home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / _Singleton.au3 < prev    next >
Text File  |  2006-06-17  |  195b  |  7 lines

  1. #include "Misc.au3"
  2. if _Singleton("test\test",1) = 0 Then
  3.     Msgbox(0,"Warning","An occurence of test is already running")
  4.     Exit
  5. EndIf
  6. Msgbox(0,"OK","the first occurence of test is running")
  7.